レコード型を DTO に変換する
各フィールドを DTO の型に変換したレコードで表現する e.g.
code:domain.fs
type OrderLineId = OrderLineId of int
type OrderLineQty = OrderLineQty of int
type OrderLine =
{ OrderLineId: OrderLineId
ProductCode: ProductCode
Quantity: OrderLineQty option
Description: string option }
code:dto.fs
type OrderLineDto =
{ OrderLineId: int
ProductCode: string
Quantity: Nullable<int>
Description: string }